home *** CD-ROM | disk | FTP | other *** search
/ BBS Toolkit / BBS Toolkit.iso / doors_1 / doorskl3.zip / DOORSKL4.C < prev    next >
C/C++ Source or Header  |  1991-12-05  |  983b  |  36 lines

  1. /**********************************************/
  2. /*                                              */
  3. /* XBBS Door Skeleton -- TC 2.0/MSC 6.0a code */
  4. /* Copyright (c) 1990/91 by M. Kimes          */
  5. /* All Rights Reserved                        */
  6. /* May be freely used for >>>FREE<<< programs */
  7. /* as long as you don't try to save any souls */
  8. /* (nasty habit)                              */
  9. /*                                            */
  10. /**********************************************/
  11.  
  12. /***************************************************************************
  13.  
  14.  this is the module where you begin writing your code...see mainloop()
  15.  below...
  16.  
  17. ***************************************************************************/
  18.  
  19. #include "doorskel.h"   /* XBBS Door include file */
  20.  
  21.  
  22.  
  23. void _fastcall mainloop(void);   /* Change as required (and in DOORSKEL.H) */
  24.  
  25.  
  26.  
  27.  
  28.  
  29. /* Here's where your main program goes.  Change declaration as req'd */
  30.  
  31. void _fastcall mainloop (void) {
  32.  
  33.  
  34.  
  35. }
  36.